Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
theme-shokax-anime
Advanced tools
anime.js for hexo-theme-shokaX
inspired by anime
<script src="https://www.unpkg.com/theme-shokax-anime@latest/anime.shokax.min.js"></script>
anime({
targets: document.getElementById("imgs"),
duration: 1000,
easing: "linear",
delay: 0,
begin: function () {
// triggered before the animation begins
},
update: function () {
// triggered when each rAF is called
},
complete: function () {
// triggered after the animation ends
},
// properties to be changed in targets
opacity: 1,
}).play();
anime().timeline().add({
targets: particules,
duration: anime.random(1200, 1800),
easing: "easeOutExpo",
update: renderParticule,
x: function (p) {
return p.endPos.x;
},
y: function (p) {
return p.endPos.y;
},
radius: 0.1,
})
.add({
targets: circle,
duration: anime.random(1200, 1800),
easing: "easeOutExpo",
update: renderParticule,
radius: anime.random(80, 160),
lineWidth: 0,
alpha: {
value: 0,
easing: "linear",
duration: anime.random(600, 800),
},
}).play();
anime({
// support DOM
// targets: document.getElementById("imgs"),
// support plain object
targets: { x: 1, y: 2 },
// support array
// targets: [{x: 1, y: 2}, {x: 2, y: 3}, {x: 3, y: 4}]
// support Infinity duration
duration: Infinity,
// support lots of easing
// easing: "linear",
// easing: "easeOutExpo",
// easing: "easeInQuad",
// ...
// properties to be changed in targets
// support from-to mode
x: [10, 20],
// support keyframe mode
x: [
{ value: 10, duration: 200 },
{ value: 20, duration: 400 },
],
// support function
y: function (item) {
return item.x;
},
// support nest
x: {
value: 20, // required
duration: 200, // required
easing: "linear",
},
// support percentage and px
// x: '100%',
// x: '20px',
// x: ['0%', '100%'],
//
}).play();
const defaultOptions = {
targets: null,
duration: Infinity,
easing: "linear",
delay: 0,
begin: null,
update: null,
complete: null,
};
FAQs
anime.js for hexo-theme-shokax
The npm package theme-shokax-anime receives a total of 347 weekly downloads. As such, theme-shokax-anime popularity was classified as not popular.
We found that theme-shokax-anime demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.